HowtoBecomeaProgrammer
About UsContact UsModules in Python can be imported into a python file and be able to use its own classes. For example, say that we are making a new python file, but we want to be able to make new Dogs using the Dog Class from Lesson 12, it would look something like this, assuming that the name of the python file that has the Dog Class is named Dog.py: import Dog Jeff = Dog('Chihuahua', 'Brown')
There are many modules that you can import that come standard with Python 3, here is a link to a full list of them.
Once you have become more familiar with coding, you may find the need for a set of modules, also known as a package, that isn't standard in python, and you can use this website to download third-party packages.